home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
dtool20
/
demo.dpr
< prev
next >
Wrap
Text File
|
1996-04-08
|
797b
|
25 lines
program Demo;
uses
Forms,
Demomisc in 'DEMOMISC.PAS' {MiscGadgets},
Demomain in 'DEMOMAIN.PAS' {FrontPanel},
Demobwcc in 'DEMOBWCC.PAS' {BWCCControls},
Demoled in 'DEMOLED.PAS' {LEDControls},
Democlok in 'DEMOCLOK.PAS' {Clocks},
Demodraw in 'DEMODRAW.PAS' {OwnerDrawControls},
Demoback in 'DEMOBACK.PAS' {BackgroundControls};
{$R *.RES}
begin
Application.CreateForm(TFrontPanel, FrontPanel);
Application.CreateForm(TMiscGadgets, MiscGadgets);
Application.CreateForm(TBWCCControls, BWCCControls);
Application.CreateForm(TLEDControls, LEDControls);
Application.CreateForm(TClocks, Clocks);
Application.CreateForm(TOwnerDrawControls, OwnerDrawControls);
Application.CreateForm(TBackgroundControls, BackgroundControls);
Application.Run;
end.